body {
  font-family: "Lato", sans-serif;
}
.container {
  position: relative;
}
table {
  border-collapse: collapse;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

th {
  padding: 5px;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

td {
  padding: 5px;
  background-color: rgba(0, 0, 255, 0.2);
  color: #000;
  text-align: left;
  vertical-align:top;

}

thead th {
  background-color: #00008B;
}
tbody tr:hover {
  background-color: rgba(0, 0, 255, 0.3);
}
tbody td {
  position: relative;
}
tbody td:hover:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -9999px;
  bottom: -9999px;
  background-color: rgba(0, 0, 255, 0.2);
  z-index: -1;
}
